From: Luc Teirlinck Date: Thu, 15 Apr 2004 02:29:35 +0000 (+0000) Subject: (Fverify_visited_file_modtime, Fvisited_file_modtime): X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~23181 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=637582ee6319ddfbe2cc9e017cfee6651459d697;p=emacs.git (Fverify_visited_file_modtime, Fvisited_file_modtime): Add hyperlink to Elisp manual to the docstring. --- diff --git a/src/fileio.c b/src/fileio.c index 3f17da7033d..c0195558a3c 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -5509,7 +5509,8 @@ e_write (desc, string, start, end, coding) DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime, Sverify_visited_file_modtime, 1, 1, 0, doc: /* Return t if last mod time of BUF's visited file matches what BUF records. -This means that the file has not been changed since it was visited or saved. */) +This means that the file has not been changed since it was visited or saved. +See Info node `(elisp)Modification Time' for more details. */) (buf) Lisp_Object buf; { @@ -5565,7 +5566,9 @@ DEFUN ("visited-file-modtime", Fvisited_file_modtime, Svisited_file_modtime, 0, 0, 0, doc: /* Return the current buffer's recorded visited file modification time. The value is a list of the form (HIGH . LOW), like the time values -that `file-attributes' returns. */) +that `file-attributes' returns. If the current buffer has no recorded +file modification time, this function returns 0. +See Info node `(elisp)Modification Time' for more details. */) () { return long_to_cons ((unsigned long) current_buffer->modtime);